home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MS AOE AOK 3.xpl < prev    next >
Text File  |  2001-01-13  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Games\Age of Empires"
  5. "NAME"="AOE: Age of Kings: The Conquerors Expansion Tweaks #2"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.00"
  8. "TEXT 1"="Enable Advanced Command Menu"
  9. "DESCRIPTION 1"="Check Box to enable "Age Of Kings: The Conquerors" Advanced Command Menu to make available additional commands & control over map, units & game operations." 
  10. "DESCRIPTION 2"="Clear [uncheck] Box to disable Advanced Command Menu."
  11. "AUTHOR"="Xteq Systems (CptSiskoX)"
  12. "CONTACTURL"="http://www.xteq.com/products/"
  13. "COPYRIGHT"="Copyright (C) Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15. "COMMENT 2"="Remember to use the latest version of DirectX http://www.microsoft.com/directx/ (freeware) at all times.  Not required but definitely helps. :)"
  16.  
  17. sPath1="HKCU\Software\Microsoft\Microsoft Games\\Age of Empires II: The Conquerors Expansion\1.0\"
  18. sValue1="Advanced Buttons" 'Dwrd
  19.  
  20.  
  21. Sub Plugin_Initialize 
  22.  if RegPathExists(sPath1) then
  23.     i=RegReadValue(sPath1 & sValue1)
  24.     if i=1 then
  25.        Call SetUIElement(1,True)
  26.     end if
  27.   
  28.  else
  29.    Disable
  30.  end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  i=GetUIElement(1)
  38.  if i=true then
  39.     Call RegWriteValue(sPath1 & sValue1,1,2)
  40.  else
  41.     Call RegWriteValue(sPath1 & sValue1,0,2)
  42.  end if
  43.  
  44. End Sub
  45.  
  46. Sub Plugin_Terminate 
  47. End Sub
  48.